home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 104 / MacAddict_104_2005-04.iso / Software / Internet & Communication / WordPress 1.2.2 freeware.dmg / wordpress / wp-includes / template-functions.php < prev    next >
Encoding:
PHP Script  |  2004-01-27  |  602 b   |  25 lines

  1. <?php
  2. $curpath = dirname(__FILE__).'/';
  3.  
  4. /***** About-the-blog tags *****/
  5. require($curpath . 'template-functions-general.php');
  6.  
  7. /***** Links *****/
  8. require($curpath . 'template-functions-links.php');
  9.  
  10. /**** // Geo Tags ****/
  11. require($curpath . 'template-functions-geo.php');
  12.  
  13. /***** Author tags *****/
  14. require($curpath . 'template-functions-author.php');
  15.  
  16. /***** Post tags *****/
  17. require($curpath . 'template-functions-post.php');
  18.  
  19. /***** Category tags *****/
  20. require($curpath . 'template-functions-category.php');
  21.  
  22. /***** Comment tags *****/
  23. require($curpath . 'template-functions-comment.php');
  24.  
  25. ?>